home *** CD-ROM | disk | FTP | other *** search
/ PC Open 93 / PC Open 93 CD 1.bin / webdesign / Tsw WebCoder / tswwebcoder4en.exe / {app} / scripts / phpmultilinecomment.tss < prev    next >
Encoding:
Text File  |  2003-07-09  |  229 b   |  15 lines

  1. {
  2. [Scriptsettings]
  3. Scriptname=PHP multiline comment
  4. ExecuteOnStartup=0
  5. ExecuteOnlyOnce=0
  6. }
  7. program PHPMultilineComment;
  8.  
  9. var
  10.  Code: string;
  11. begin
  12.  Code := '/*'+#13#10+GetSelText+#13#10+'*/';
  13.  SetSelText(Code);
  14. end.
  15.